home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_9.lha / 5_9 / 5_9a0.c next >
Text File  |  1993-08-08  |  322b  |  16 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / date class as defined in section 5.2.2
  6. lass date
  7.  
  8.    int month, day, year;
  9.  
  10. ublic:
  11.    void set(int, int, int);
  12.    void get(int*, int*, int*);
  13.    void next();
  14.    void print();
  15. ;
  16.